80ed84ea2db3828b9f45c86b984c15051439e74e,src/main/java/org/sonar/plugins/csharp/CSharpCodeCoverageProvider.java,CSharpCodeCoverageProvider,extensions,#,53
Before Change
.name("dotCover (HTML) Reports Paths")
.description("Example: \"report.html\", \"report1.html,report2.html\" or \"C:/report.html\"")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
.onlyOnQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.build(),
PropertyDefinition.builder(VISUAL_STUDIO_COVERAGE_XML_PROPERTY_KEY)
.name("Visual Studio (XML) Reports Paths")
After Change
.name("dotCover Unit Tests (HTML) Reports Paths")
.description("Example: \"report.html\", \"report1.html,report2.html\" or \"C:/report.html\"")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
.onlyOnQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.build(),
PropertyDefinition.builder(IT_DOTCOVER_PROPERTY_KEY)
.name("dotCover Integration Tests (HTML) Reports Paths")
.description("Example: \"report.html\", \"report1.html,report2.html\" or \"C:/report.html\"")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
.onlyOnQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.build(),
PropertyDefinition.builder(VISUAL_STUDIO_COVERAGE_XML_PROPERTY_KEY)
.name("Visual Studio Unit Tests (XML) Reports Paths")
.description("Example: \"report.coveragexml\", \"report1.coveragexml,report2.coveragexml\" or \"C:/report.coveragexml\"")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
.onlyOnQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.build(),
PropertyDefinition.builder(IT_VISUAL_STUDIO_COVERAGE_XML_PROPERTY_KEY)
.name("Visual Studio Integration Tests (XML) Reports Paths")
.description("Example: \"report.coveragexml\", \"report1.coveragexml,report2.coveragexml\" or \"C:/report.coveragexml\"")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
.onlyOnQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.build());
}